New owners now can be created properly.
[RRRRHHHH_Code] / ruralHouses client / src / common / AccountInterface.java
index a6f3df9..9d489d4 100644 (file)
@@ -4,11 +4,12 @@ import java.rmi.Remote;
 import java.rmi.RemoteException;
 
 import domain.Account;
+import domain.Owner;
 
 public interface AccountInterface extends Remote{
        
 
-       public boolean addAccount(Account ac) throws RemoteException;
+       public boolean addAccount(int index) throws RemoteException;
        
        public boolean removeAccount(Account ac) throws RemoteException;
 }